home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / PEBuilder / pebuilder3110a.exe / {app} / plugin / StarWind / StarWind_GUI.cmd < prev    next >
OS/2 REXX Batch file  |  2005-01-17  |  465b  |  25 lines

  1. @echo off
  2. setlocal
  3.  
  4. echo Check if TCP/IP stack is installed...
  5. bartpe.exe -c c -q ms_tcpip
  6. if not "%errorlevel%" == "0" (
  7.     echo.
  8.     echo TCP/IP stack is not installed!
  9.     echo Please load network support before this script!
  10.     goto _err)
  11.  
  12. regsvr32 /s msxml.dll
  13.  
  14. %systemdrive%\Programs\RDS\StarWind\StarWind.exe
  15.  
  16. goto _end
  17.  
  18. :_err
  19. echo.
  20. echo There was an error, script aborted!!!
  21. rem set errorlevel to 1 by (mis)using color
  22. color 00 
  23. :_end
  24. endlocal
  25.